home *** CD-ROM | disk | FTP | other *** search
- (if (= @language "deutsch")
- (
- (SET Intro "Wilkommen zum Installer-Script für TileForth")
- (SET Where "Wohin soll das TileForth Packet hinkopiert werden ? Es wird ein Verzeichnis Namens TileForth angelegt")
- (SET Addit "Es werden nun noch ein paar Zeilen zu s:user-startup hinzugefügt")
- )
- )
-
- (if (= @language "english")
- (
- (SET Intro "Welcome to the installer-script for TileForth")
- (SET Where "Where do you want to place the TileForth package ? A drawer called TilrForth will be created ")
- (SET Addit "Some additions to s:user-startup will be made")
- )
- )
-
- (MESSAGE Intro)
-
- (SET Wuck
- (ASKDIR
- (PROMPT Where)
- (HELP "")
- (DEFAULT "sys:")
- )
- )
-
- (SET BinDest (TACKON Wuck "TileForth"))
-
- (RUN (CAT "makedir \""BinDest"\""))
-
- (COPYFILES
- (SOURCE ":Dev/TileForth/")
- (DEST BinDest)
- (ALL)
- (INFOS)
- )
-
- (STARTUP @app-name
- (COMMAND (cat "assign c: \""(TACKON BinDest "bin")"\" Add \n"
- "assign tile: \""BinDest"\" \n"
- )
- )
- (PROMPT Addit)
- (HELP "")
- )
-
- (RUN (cat "assign c: \""(TACKON BinDest "bin")"\" Add \n"
- "assign tile: \""BinDest"\" \n"
- )
- )
-
-
-
-